Method OnTypeChange<TFrom, TTo>()

Assembly: redb.Core.Pro.dll

Field type change with custom conversion.
builder.Property(p => p.Price)
.OnTypeChange<string, decimal>()
.Using(v => decimal.Parse(v));

ITypeChangeMigrationBuilder<TProps, TFrom, TTo> OnTypeChange<TFrom, TTo>()